home *** CD-ROM | disk | FTP | other *** search
/ Clickx 115 / Clickx 115.iso / software / tools / windows / tails-i386-0.16.iso / live / filesystem.squashfs / usr / share / pyshared / GdmGreeter / config.py < prev    next >
Encoding:
Python Source  |  2013-01-10  |  1.6 KB  |  47 lines

  1. #!/usr/bin/python
  2. #
  3. # Copyright 2012 Tails developers <tails@boum.org>
  4. # Copyright 2011 Max <govnototalitarizm@gmail.com>
  5. # Copyright 2011 Martin Owens
  6. #
  7. # This program is free software: you can redistribute it and/or modify
  8. #  it under the terms of the GNU General Public License as published by
  9. #  the Free Software Foundation, either version 3 of the License, or
  10. #  (at your option) any later version.
  11. #
  12. #  This program is distributed in the hope that it will be useful,
  13. #  but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. #  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  15. #  GNU General Public License for more details.
  16. #
  17. #  You should have received a copy of the GNU General Public License
  18. #  along with this program.  If not, see <http://www.gnu.org/licenses/>
  19. #
  20. """Tails-greeter configuration"""
  21.  
  22. # default Tails credentials
  23. LPASSWORD = 'live'
  24. LUSER = 'amnesia'
  25.  
  26. # file where supported language codes (such as en_US) are saved at Tails build time
  27. language_codes_path = '/usr/share/tails-greeter/language_codes'
  28.  
  29. # locales path
  30. locales_path = '/usr/share/locale/'
  31.  
  32. # locales to display in main menu
  33. default_locales = ["ar_EG", "zh_CN", "en_US", "fa_IR", "fr_FR",
  34.                   "de_DE", "it", "pt", "ru", "es", "vi_VN"]
  35.  
  36. # file to store tails session locale settings
  37. locale_output_path = '/var/lib/gdm3/tails.locale'
  38.  
  39. # file to store tails session sudo password to
  40. rootpassword_output_path = '/var/lib/gdm3/tails.password'
  41.  
  42. # File where Tails persistence status is saved
  43. persistence_state_file = '/var/lib/gdm3/tails.persistence'
  44.  
  45. # Stores which operating system camouflage to activate, if any
  46. camouflage_settings = '/var/lib/gdm3/tails.camouflage'
  47.